403582849433b594f9588c92c1183f4080c99e91,maven-pdf-plugin/src/main/java/org/apache/maven/plugins/pdf/PdfMojo.java,PdfMojo,isValidGeneratedReport,#MojoDescriptor#File#String#,1523

Before Change


        }
        catch ( ParserNotFoundException e )
        {
            if ( getLog().isDebugEnabled() )
            {
                getLog().error( "ParserNotFoundException: " + e.getMessage(), e );
            }
            else
            {

After Change


        catch ( IOException e )
        {
            getLog().error( "IOException: " + e.getMessage() );
            getLog().debug( e );

            return false;
        }